.. _`Select key JSON`: .. _`org.sysess.sympathy.data.json.selectkeyjson`: Select key JSON ``````````````` .. image:: select_json_key.svg :width: 48 Documentation ::::::::::::: Select key in a JSON structure and from that create a new JSON Will only select the first occurrence of the key For example from the JSON: .. code-block:: python { "version":"1.0", "software":"sfd", "items" : { "a":"1", "b":"2", "c":"3" } } we can select the key ``"items"``, which will produce the new JSON .. code-block:: python { "a":"1", "b":"2", "c":"3" } Definition :::::::::: Input ports ........... **input** json Input Output ports ............ **output** json Output Configuration ............. **JSON key** (key) The key to select Implementation .............. .. automodule:: node_select_json :noindex: .. class:: SelectKeyJson :noindex: